home *** CD-ROM | disk | FTP | other *** search
- {========================================================================}
- {= (c) 1995-98 SwiftSoft Ronald Dittrich =}
- {========================================================================}
- {= All Rights Reserved =}
- {========================================================================}
- {= D 01099 Dresden = Tel.: +0351-8012255 =}
- {= Loewenstr.7a = info@swiftsoft.de =}
- {========================================================================}
- {= Actual versions on http://www.swiftsoft.de/mmtools.html =}
- {========================================================================}
- {= This code is for reference purposes only and may not be copied or =}
- {= distributed in any format electronic or otherwise except one copy =}
- {= for backup purposes. =}
- {= =}
- {= No Delphi Component Kit or Component individually or in a collection=}
- {= subclassed or otherwise from the code in this unit, or associated =}
- {= .pas, .dfm, .dcu, .asm or .obj files may be sold or distributed =}
- {= without express permission from SwiftSoft. =}
- {= =}
- {= For more licence informations please refer to the associated =}
- {= HelpFile. =}
- {========================================================================}
- {= $Date: 20.01.1998 - 18:00:00 $ =}
- {========================================================================}
- unit MMVisReg;
-
- {$I COMPILER.INC}
-
- Interface
-
- Procedure Register;
-
- Implementation
-
- {$IFDEF WIN32}
- {$R MMVISUAL.D32}
- {$ELSE}
- {$R MMVISUAL.D16}
- {$ENDIF}
-
- uses
- Controls,
- Classes,
- DsgnIntf,
- SysUtils,
- MMDesign,
- MMConect,
- MMOscope,
- MMLevel,
- MMMeter,
- MMSpectr,
- MMSpGram,
- MMLight;
-
- {=========================================================================}
- procedure Register;
- begin
- RegisterComponents('MMVisual', [TMMConnector,
- TMMOscope,
- TMMMeter,
- TMMLevel,
- TMMLevelScale,
- TMMSpectrum,
- TMMSpectrogram,
- TMMLight]);
-
- RegisterComponentEditor(TMMSpectrum, TMMSpectrumEditor);
- end;
-
- initialization
- RegisterProperty(ptOutput,'DSP',TMMConnector,'Level1',TMMLevel,nil);
- RegisterProperty(ptOutput,'DSP',TMMConnector,'Level2',TMMLevel,nil);
- RegisterProperty(ptOutput,'DSP',TMMConnector,'Meter1',TMMMeter,nil);
- RegisterProperty(ptOutput,'DSP',TMMConnector,'Meter2',TMMMeter,nil);
- RegisterProperty(ptOutput,'DSP',TMMConnector,'Oscope1',TMMOscope,nil);
- RegisterProperty(ptOutput,'DSP',TMMConnector,'Oscope2',TMMOscope,nil);
- RegisterProperty(ptOutput,'DSP',TMMConnector,'Light1',TMMLight,nil);
- RegisterProperty(ptOutput,'DSP',TMMConnector,'Light2',TMMLight,nil);
- RegisterProperty(ptOutput,'DSP',TMMConnector,'Spectrogram1',TMMSpectrogram,nil);
- RegisterProperty(ptOutput,'DSP',TMMConnector,'Spectrogram2',TMMSpectrogram,nil);
- RegisterProperty(ptOutput,'DSP',TMMConnector,'Spectrum1',TMMSpectrum,nil);
- RegisterProperty(ptOutput,'DSP',TMMConnector,'Spectrum2',TMMSpectrum,nil);
- RegisterProperty(ptOutput,'DSP',TMMConnector,'Spectrum3',TMMSpectrum,nil);
- RegisterProperty(ptOutput,'DSP',TMMConnector,'Spectrum4',TMMSpectrum,nil);
- end.
-